home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_231.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  344 b   |  1 lines

  1. Assigning to a reference changes the referred-to value, thus a ref is an 'Lvalue' (something that can appear on the 'L'eft-hand-side of an assignment statement) for the referred-to value.  This insight can be pushed a bit farther by allowing references to be *returned*, thus allowing function calls on the left hand side of an assignment stmt.